Del Real CommercialCloud Setup ← Back to app
Phase 1 · Shared cloud foundation

Make it a real, shared app

Connect a free Firebase project so every agent sees the same pipeline, from any device, behind a login. Your data syncs automatically; until you finish setup, the app keeps working exactly as it does today (just on this device).

Connection status

Not configured
Running in local-only mode on this device.

1Firebase config

Paste the firebaseConfig object from your Firebase project settings, and name a shared workspace (all agents use the same name).

How to create the Firebase project (5 minutes)
  1. Go to console.firebase.google.comAdd project (any name).
  2. In the project, click the </> (Web) icon to register a web app — copy the firebaseConfig object it shows and paste it above.
  3. Build → Authentication → Get started → Sign-in method → enable Email/Password (and toggle on Email link if you want passwordless).
  4. Build → Firestore Database → Create database (Production mode is fine). Then open the Rules tab and paste:
rules_version = '2';
service cloud.firestore {
  match /databases/{db}/documents {
    // Any signed-in Del Real user can read/write the shared workspace
    match /workspaces/{ws}/{doc=**} {
      allow read, write: if request.auth != null;
    }
  }
}

These keys live in the browser by design — Firebase secures data with the rules above (only signed-in users), not by hiding the config. For tighter control later, scope rules to an allow-list of agent emails.

2Account

Sign in with your Del Real email. New team member? Create an account — anyone signed in shares the same workspace.

3Data

First time setting up the workspace? Push this device's data up to seed the cloud. After that, every change syncs automatically across devices.